home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / ctask22d / mspawn.bc < prev    next >
Text File  |  1992-12-21  |  750b  |  28 lines

  1. #
  2. #  --- Version 2.2 92-05-15 16:06 ---
  3. #  CTask sample applications Make-File for Borland's make.
  4. #  Application: MSPAWN.C
  5. #
  6. #    "reqopt" contains required options, and shouldn't normally be changed.
  7. #    "optopt" lists optional optimization options, and may be changed.
  8. #    "model"  is the memory model letter to use (all except Tiny & Huge).
  9. #    "lib"    is the Turbo C library path
  10. #
  11. reqopt=-c -N- -a- -u -K
  12. optopt=-d -G -O -k- -w -v -vi
  13. !if !$d(model)
  14. model=l
  15. !endif
  16. ctlib=ctasktc
  17.  
  18. .c.obj:
  19.    bcc $(reqopt) $(optopt) -m$(model) $*.c
  20.  
  21. mspawn.exe:     mspawn.obj  ctsuptc$(model).lib $(ctlib).lib
  22.    tlink /m /l /v c0$(model) $*,$*,$*,ctsuptc$(model) $(ctlib) c$(model)
  23.  
  24. mspawn.obj:     mspawn.c tsk.h tskconf.h
  25.  
  26.  
  27.